GtkWindow: rearrange private struct to fill some holes
authorMatthias Clasen <mclasen@redhat.com>
Mon, 11 Apr 2011 22:33:43 +0000 (18:33 -0400)
committerMatthias Clasen <mclasen@redhat.com>
Mon, 11 Apr 2011 22:33:43 +0000 (18:33 -0400)
gtk/gtkwindow.c

index fb957617c7a1569912de1fef1467eb68377ff3a8..1a3c40f6e7287fe45c5396c7783b2eb6c7c3bb94 100644 (file)
@@ -107,13 +107,12 @@ struct _GtkWindowPrivate
   GtkWindow             *transient_parent;
   GtkWindowGeometryInfo *geometry_info;
   GtkWindowGroup        *group;
+  GdkScreen             *screen;
+  GtkApplication        *application;
 
   GdkModifierType        mnemonic_modifier;
-  GdkScreen             *screen;
   GdkWindowTypeHint      gdk_type_hint;
 
-  GtkApplication        *application;
-
   gdouble  opacity;
 
   GdkWindow *grip_window;
@@ -147,7 +146,6 @@ struct _GtkWindowPrivate
   guint    destroy_with_parent       : 1;
   guint    focus_on_map              : 1;
   guint    fullscreen_initially      : 1;
-  guint    gravity                   : 5; /* GdkGravity */
   guint    has_focus                 : 1;
   guint    has_user_ref_count        : 1;
   guint    has_toplevel_focus        : 1;
@@ -176,6 +174,7 @@ struct _GtkWindowPrivate
   guint    resize_grip_visible       : 1;  /* don't use, just for "resize-
                                             * grip-visible" notification
                                             */
+  guint    gravity                   : 5; /* GdkGravity */
 
 };